+Sat Feb 23 16:52:38 2002 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkentry.c: Patch from Matthias Clasen to remove some
+ excessive ::changed signals for GtkEntry. (#53130)
+
2002-02-23 Tor Lillqvist <tml@iki.fi>
* gtk-zip.sh.in: Include the gtkrc files for themes.
+Sat Feb 23 16:52:38 2002 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkentry.c: Patch from Matthias Clasen to remove some
+ excessive ::changed signals for GtkEntry. (#53130)
+
2002-02-23 Tor Lillqvist <tml@iki.fi>
* gtk-zip.sh.in: Include the gtkrc files for themes.
+Sat Feb 23 16:52:38 2002 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkentry.c: Patch from Matthias Clasen to remove some
+ excessive ::changed signals for GtkEntry. (#53130)
+
2002-02-23 Tor Lillqvist <tml@iki.fi>
* gtk-zip.sh.in: Include the gtkrc files for themes.
+Sat Feb 23 16:52:38 2002 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkentry.c: Patch from Matthias Clasen to remove some
+ excessive ::changed signals for GtkEntry. (#53130)
+
2002-02-23 Tor Lillqvist <tml@iki.fi>
* gtk-zip.sh.in: Include the gtkrc files for themes.
+Sat Feb 23 16:52:38 2002 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkentry.c: Patch from Matthias Clasen to remove some
+ excessive ::changed signals for GtkEntry. (#53130)
+
2002-02-23 Tor Lillqvist <tml@iki.fi>
* gtk-zip.sh.in: Include the gtkrc files for themes.
+Sat Feb 23 16:52:38 2002 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkentry.c: Patch from Matthias Clasen to remove some
+ excessive ::changed signals for GtkEntry. (#53130)
+
2002-02-23 Tor Lillqvist <tml@iki.fi>
* gtk-zip.sh.in: Include the gtkrc files for themes.
+Sat Feb 23 16:52:38 2002 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkentry.c: Patch from Matthias Clasen to remove some
+ excessive ::changed signals for GtkEntry. (#53130)
+
2002-02-23 Tor Lillqvist <tml@iki.fi>
* gtk-zip.sh.in: Include the gtkrc files for themes.
strncpy (text, new_text, new_text_length);
g_signal_emit_by_name (editable, "insert_text", text, new_text_length, position);
- g_signal_emit_by_name (editable, "changed");
- g_object_notify (G_OBJECT (editable), "text");
if (new_text_length > 63)
g_free (text);
g_object_ref (G_OBJECT (editable));
g_signal_emit_by_name (editable, "delete_text", start_pos, end_pos);
- g_signal_emit_by_name (editable, "changed");
- g_object_notify (G_OBJECT (editable), "text");
g_object_unref (G_OBJECT (editable));
}
*position += n_chars;
gtk_entry_recompute (entry);
+
+ g_signal_emit_by_name (editable, "changed");
+ g_object_notify (G_OBJECT (editable), "text");
}
static void
if (entry->selection_bound > start_pos)
entry->selection_bound -= MIN (entry->selection_bound, end_pos) - start_pos;
+ /* We might have deleted the selection
+ */
+ gtk_entry_update_primary_selection (entry);
+
+ gtk_entry_recompute (entry);
+
+ g_signal_emit_by_name (editable, "changed");
+ g_object_notify (G_OBJECT (editable), "text");
}
-
- /* We might have deleted the selection
- */
- gtk_entry_update_primary_selection (entry);
-
- gtk_entry_recompute (entry);
}
/* Compute the X position for an offset that corresponds to the "more important